home *** CD-ROM | disk | FTP | other *** search
/ PC Open 93 / PC Open 93 CD 2.bin / PDF / webdeveloper / lezione_2 / errore.asp < prev    next >
Encoding:
Text File  |  2003-10-25  |  285 b   |  25 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2.  
  3. <html>
  4. <head>
  5.     <title>Pagina con errore</title>
  6. </head>
  7.  
  8. <body>
  9.  
  10. <% 
  11.  
  12. Dim i
  13. Dim j
  14.  
  15. i = 1000
  16.  
  17. for j = -10 to 10
  18.     response.write i/j
  19. next
  20.  
  21. %>
  22.  
  23. </body>
  24. </html>
  25.